home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / wb / aavd15.lha / aavd / install < prev    next >
Text File  |  1995-04-30  |  2KB  |  64 lines

  1. ;
  2. ;Installer script for Aavd
  3. ;
  4.  
  5. (
  6.     (set dir
  7.         (askdir
  8.             (prompt "Where do you wish to install the Aavd executable")
  9.             (help   "Here you specify in what directory you wish to install "
  10.                     "Aavd. Suggested location can be in either C: (among with "
  11.                     "the default shellcommands) or in SYS:Utilities or SYS:Tools.")
  12.             (default "c:")
  13.         )
  14.     )
  15.  
  16.     (copyfiles
  17.         (source "aavd")
  18.         (dest   dir)
  19.     )
  20.  
  21.  
  22.     (set dir
  23.         (askdir
  24.             (prompt "Where do you wish to install the Aavd documentaion")
  25.             (help   "Here you specify in what directory you wish to install "
  26.                     "the Aavd docs.")
  27.             (default "sys:s")
  28.         )
  29.     )
  30.  
  31.     (copyfiles
  32.         (source "aavd.guide")
  33.         (dest   dir)
  34.     )
  35.  
  36.  
  37.     (if (= 0 (askchoice
  38.                 (prompt "Do you wish to install the Aavd font?")
  39.                 (help   "From V1.5 of Aavd you will be able to print the window titles "
  40.                         "in the boxes. Because of this Aavd now comes with a font of "
  41.                         "it's own. It's a very small font (size 6) and vill be used "
  42.                         "by default by Aavd, unless you choose to use another font.")
  43.                 (choices    "Yes" "No")
  44.             )
  45.         )
  46.         (
  47.             (set dir
  48.                 (askdir
  49.                     (prompt "Where do you wish to install the font")
  50.                     (help   "Here you specify in what directory you wish to install "
  51.                     "the Aavd font.")
  52.                     (default "fonts:")
  53.                 )
  54.             )
  55.             (copyfiles
  56.                 (source "fonts")
  57.                 (dest   dir)
  58.                 (all)
  59.             )
  60.         )
  61.     )
  62.  
  63. )
  64.